home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d13 / plotv21.arc / PLIC.BAS < prev    next >
BASIC Source File  |  1990-02-21  |  1KB  |  23 lines

  1. andle rectilinear, polar and vector
  2.  plotting. After plotting, you may review a tabulation of all plotted points
  3.  (except for the vector program).
  4.  
  5.  These programs were written in BASICA to take advantage of a unique BASICA
  6.  capability - the CHAIN MERGE feature. When you enter an equation to be
  7.  plotted, you may enter it just as you would write it on paper. The
  8.  program accepts your equation as a string variable, appends your equation
  9.  to a string that defines a line number then writes the whole string to a
  10.  file (FCT1.BAS for example). This file is then CHAIN MERGED with the
  11.  program itself and your equation becomes an executable line of code,
  12.  complete with a line number in the program. Unfortunately, existing
  13.  compilers can not compile the CHAIN MERGE statement.
  14.  
  15.  We felt that being able to enter the equation in standard equation format was
  16.  so important that we have released these programs in BASICA.  No other
  17.  language that we know of allows a chain-merge-like function and writing the
  18.  function in another language would be a formidable task. Chalk one up for
  19.  BASIC! Although not extremely fast, we think that you will find the plotting
  20.  speed of these programs satisfactory.
  21.  
  22.  SPECIAL NOTE: Because of the technique mentioned above, you will render
  23.                these pro